home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000322_news@columbia.edu _Mon Feb 19 16:16:21 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id QAA24991
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 19 Feb 2001 16:16:21 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA22316
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Feb 2001 16:16:21 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id PAA17837
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Feb 2001 15:53:33 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: guenhwyvar_2000@hotmail.com (Guenhwyvar)
  13. Subject: Re: automate dialing
  14. Message-ID: <3a9187a9.780123@nntp.uunet.ca>
  15. Date: Mon, 19 Feb 2001 20:53:28 GMT
  16. Organization: UUNET Canada News Reader Service
  17. To: kermit.misc@columbia.edu
  18.  
  19. On 19 Feb 2001 19:16:12 GMT, fdc@watsun.cc.columbia.edu (Frank da
  20. Cruz) wrote:
  21.  
  22. >In article <3a916e10.15776541@nntp.uunet.ca>,
  23. >Guenhwyvar <guenhwyvar_2000@hotmail.com> wrote:
  24. >: Whenthe script is going to dialing, i receive this message:
  25. >: 
  26. >: ?Connection on U.S. Robotics 56K FAX EXT is not open.
  27. >: 
  28. >: i havent found any doc on this subjet.
  29. >: 
  30. >This is a report about Kermit 95?  Perhaps you could post the portion
  31. >of your script that does the setup and dialing.
  32. >
  33. >The message seems to indicate that the modem is in use by another
  34. >process.  Could that be the case?
  35. >
  36. >- Frank
  37.  
  38. No program use the modem.
  39.  
  40. My script
  41.  
  42. define modem-Standard-Modem {
  43. set tapi line Standard_Modem
  44. if fail end 1 TAPI line Standard_Modem already in use.
  45. if not equal "\v(modem)" "tapi" set modem type tapi
  46. set carrier auto
  47. set modem error-correction on
  48. set modem compression on
  49. set speed 57600
  50. set parity none
  51. set stop-bits 1
  52. set flow auto
  53. set modem volume low
  54. set modem speaker on
  55. set modem escape-char 43
  56. set modem speed-match off
  57. }
  58.  
  59. define modem-DEFAULT {
  60. set tapi line U.S._Robotics_56K_FAX_EXT
  61. if fail end 1 TAPI line U.S._Robotics_56K_FAX_EXT already in use.
  62. if not equal "\v(modem)" "tapi" set modem type tapi
  63. set carrier auto
  64. set modem error-correction on
  65. set modem compression on
  66. set speed 57600
  67. set parity none
  68. set stop-bits 1
  69. set flow auto
  70. set modem volume low
  71. set modem speaker on
  72. set modem escape-char 0
  73. set modem speed-match off
  74. }
  75.  
  76.     
  77.     write screen \13\10\13\10
  78.  
  79.  
  80.  
  81.     output ATDT\m(_MOB_No_Tel)\13\10    ; # D'acc∩┐╜s
  82.     input 100 CONNECT                    ;
  83. Attente du mot CONNECT dans les 100 secondes qui suivent
  84.     if success goto remote_echange_fichier
  85.  
  86.  
  87.  
  88. Thanks
  89.  
  90. Guenhwyvar
  91. guenhwyvar_2000@hotmail.com